Create a new account on GitHub/BitBucket
https://github.com/
https://bitbucket.org/
Create a repository.
Copy the repository URL
Download GitKraken Git commands
git fetch -> Download files from remote repository but don’t touch local files
git merge -> merge downloaded files with local files
git pull -> git fetch & git merge
git add -> Add files or folders to the local repository
git commit -> Commits the local changes to the local repository
git push -> uploads your local repository to the remote repository
git branch -> Shows all branches (* shows current branch)
git branch -> creates a branch with the given name
git branch –delete -> Deletes a branch
Workflow:
Create a new branch and import the content of the master branch
$ git checkout -b newbranch Switched to a new branch "newbranch"
This is shorthand for:
$ git branch newbranch $ git checkout newbranch
^optional^
git pull -> do work -> git add -> ^git branch ^ -> git pull -> git push
merge to master: git checkout master -> git merge
IMAGE: git_everthing_is_local
IMAGE: git_overview
To work with an online repository, you need to have an SSH key which is imported into your GitHub/BitBucket account. This is required for identifying the user.
$ git config --global user.name ""
$ git config --global user.email ""
Note: The global git configuration is stored i ~/.gitconfig
$ git init
$ git clone https://github.com/someuser/someproject.git
$ git status
The .gitignore file is used to exclude specific files from check-in.
Example of .gitignore file:
# Filter files
debian/file
# Filter folders
build/
# Filter file extensions
*.deb
Add specific file
$ git add
$ git add -A
A commit adds the changes to the local repository.
$ git commit -m ""
or
$ git commit (you will be asked to provide a commit message
$ git diff
Be careful! Git checkout deletes the local changes of that file forever.
$ git checkout
This removes the previously staged modification from the staging area.
$ git reset
$ git reset --hard
This shows the changelog of all git commits
$ git log
$ git log --oneline
This shows a commit in detail
$ git show
Place a branch onto another branch, commit or something like that. I don’t know. Do that with GitKraken or your repository is doomed forever. However, the git command would be
$ git rebase -i
Amend commit message
This changes the message of the last commit
$ git commit --amend
git branch -m old_branch new_branch # Rename branch locally
git push origin :old_branch # Delete the old branch
git push –set-upstream origin new_branch # Push the new branch, set local branch to track the new remote
$ git branch --delete <branchname>